.getInfo_bg {
  background: #FFFFFF linear-gradient(178deg, rgba(255,255,255,0.5051) 0%, #EFF8FC 50%, #EDF5FF 100%);
}
.get_info_card {
  display: flex;
}
.get_info_card_item {
  position: relative;
  flex:1;
  flex-shrink:0;
  padding:32px;
  border-radius: 20px;
}
.get_info_card_item:not(:last-child) {
  margin-right: 32px;
}
.get_info_card_item:nth-child(1) {
  background: url('/wp-content/themes/do1/assets/images/3.0/case-bg1.png') no-repeat;
  background-size: 100%;
}
.get_info_card_item:nth-child(2) {
  background: url('/wp-content/themes/do1/assets/images/3.0/case-bg2.png') no-repeat;
  background-size: 100%;
}
.get_info_card_title {
  padding-bottom:16px;
  color: #0F1633;
  font-size: 32px;
}
.g_tag_group {
  display:flex;
  padding-bottom:16px;
}
.g_tag {
  display:inline-block;
  line-height: 28px;
  padding-left:14px;
  padding-right:14px;
  background: #FFFFFF;
  color: #86909C;
  font-size: 12px;
  border: 1px solid #E5E6EB;
  box-sizing: border-box;
  border-radius: 20px;
  margin-right: 8px;
}
.get_info_card_arrow {
  display:inline-block;
  margin-left: 16px;
  width: 20px;
  height: 20px;
  transform: rotate(-45deg);
  border-right: 3px solid #0F1633;
  border-bottom: 3px solid #0F1633;
  border-radius: 2px;
}
.get_info_list {  
  display:flex;
  flex-wrap:wrap;
  padding-top:8px;
}
.get_info_list_item {
  position:relative;
  width: 50%;
  box-sizing:border-box;
  padding-left:20px;
  padding-top:8px;
  padding-bottom:8px;
  overflow: hidden;
}
.get_info_list .get_info_list_item:nth-child(2n+1) {  
  padding-right: 40px;
}
.get_info_list_item::before,
.get_info_list_item::after {  
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  content: "";
  background: #FFB684;
  border-radius: 50%;
}
.get_info_list_item::before {
  left:0;
  width:12px;
  height:12px;
  opacity: 0.2;
}
.get_info_list_item::after {
  left:3px;
  width:6px;
  height:6px;
}
.get_info_list_item_text {
  display:block;
  font-size: 16px;
  color: #6F7385;
  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;
}
.get_info_list_item_text:hover {
  color: var(--primary-color);
}

.get_info_qrcode {
  position: absolute;
  right: 0;
  top: 0;
  width: 92px;
  height: 92px;
  background: url('/wp-content/themes/do1/assets/images/3.0/guide-qrcode.png') no-repeat;
  background-size: 100%;
  cursor: pointer;
  border-radius: 0 20px 0 0;
}
.get_info_qrcode_body {
  position: absolute;
  right: 0;
  bottom: 100px;
  width: 200px;  
  height: 245px;
  opacity: 0;
  transition: opacity .3s;
}
.get_info_qrcode:hover 
.get_info_qrcode_body {
  opacity: 1;
}